home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue59 / Arch / Extended Sample / UnitObjectEntityBase.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-05-17  |  406 b   |  29 lines

  1. unit UnitObjectEntityBase;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   UnitObjectBase, Db, DBTables;
  8.  
  9. type
  10.  
  11.   TObjectEntityBase = class;
  12.   TObjectEntityClass = class of TObjectEntityBase;
  13.   TObjectEntityBase = class(TObjectBase)
  14.   private
  15.   protected
  16.   public
  17.   end;
  18.  
  19. implementation
  20.  
  21. {$R *.DFM}
  22.  
  23.  
  24.  
  25. { TObjectEntityBase }
  26.  
  27.  
  28. end.
  29.